    /* 1. Reset & Base */
    .fb-ind-scope {
        background: #000;
        color: #fff;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .fb-ind-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
        margin-top: 50px;
    }

    /* 2. Hero Section */
    .fb-ind-hero {
        padding: clamp(80px, 15vh, 150px) 0;
        background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7)), url('') center/cover;
        border-bottom: 4px solid #ffcc00;
        text-align: left;
    }

    .fb-ind-badge {
        color: #ffcc00;
        font-weight: 800;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .fb-ind-dot {
        width: 8px;
        height: 8px;
        background: #ffcc00;
        border-radius: 50%;
        animation: fb-pulse 1.5s infinite;
    }

    @keyframes fb-pulse {
        0% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.4;
            transform: scale(1.2);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    .fb-ind-h1 {
        font-size: clamp(2.2rem, 7vw, 4rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .fb-ind-h1 span {
        color: #ffcc00;
    }

    .fb-ind-p {
        max-width: 600px;
        color: #ccc;
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .fb-ind-btn-group {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .fb-ind-btn-y {
        background: #ffcc00;
        color: #000;
        padding: 15px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
    }

    .fb-ind-btn-w {
        border: 2px solid #fff;
        color: #fff;
        padding: 13px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
    }

    .fb-ind-btn-y:hover {
        background: #fff;
    }

    /* 3. Split Section (Responsive Grid) */
    .fb-ind-section {
        padding: clamp(60px, 10vh, 100px) 0;
    }

    .fb-ind-bg-alt {
        background: #080808;
    }

    .fb-ind-split {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 50px;
        align-items: center;
    }

    .fb-ind-title {
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .fb-ind-title span {
        color: #ffcc00;
    }

    .fb-ind-desc {
        color: #bbb;
        margin-bottom: 25px;
        font-size: 1.05rem;
    }

    .fb-ind-features {
        list-style: none;
        padding: 0;
        margin-bottom: 35px;
    }

    .fb-ind-features li {
        display: flex;
        gap: 12px;
        margin-bottom: 12px;
        font-weight: 600;
        color: #eee;
    }

    .fb-ind-features span {
        color: #ffcc00;
        font-weight: 900;
    }

    .fb-ind-stats {
        display: flex;
        gap: 15px;
    }

    .fb-ind-stat-card {
        background: #111;
        padding: 12px 20px;
        border: 1px solid #222;
        border-radius: 6px;
        font-size: 0.9rem;
    }

    .fb-ind-stat-card strong {
        color: #ffcc00;
    }

    /* 4. Image Visuals */
    .fb-ind-img-frame {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #333;
    }

    .fb-ind-img {
        width: 100%;
        display: block;
        transition: 0.5s;
        filter: grayscale(30%);
    }

    .fb-ind-img-frame:hover .fb-ind-img {
        transform: scale(1.05);
        filter: grayscale(0%);
    }

    .fb-ind-tag {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: #ffcc00;
        color: #000;
        padding: 5px 12px;
        font-weight: 900;
        font-size: 10px;
        text-transform: uppercase;
    }

    /* 5. Features Grid */
    .fb-ind-header-center {
        text-align: center;
        margin-bottom: 50px;
    }

    .fb-ind-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .fb-ind-card {
        background: #111;
        padding: 40px;
        border: 1px solid #222;
        border-radius: 10px;
        transition: 0.4s;
    }

    .fb-ind-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .fb-ind-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .fb-ind-card p {
        color: #888;
        font-size: 0.95rem;
    }

    .fb-ind-featured {
        border-color: rgba(255, 204, 0, 0.4);
        background: #151515;
    }

    .fb-ind-card:hover {
        border-color: #ffcc00;
        transform: translateY(-10px);
    }

    /* 6. Tablet & Mobile Responsive */
    @media (max-width: 992px) {
        .fb-ind-split {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .fb-ind-col-img {
            order: -1;
        }

        /* Image comes first on mobile/tablet */
        .fb-ind-col-text {
            text-align: center;
        }

        .fb-ind-features li {
            justify-content: center;
        }

        .fb-ind-stats {
            justify-content: center;
        }
    }

    @media (max-width: 600px) {
        .fb-ind-hero {
            text-align: center;
        }

        .fb-ind-badge {
            justify-content: center;
        }

        .fb-ind-btn-group {
            flex-direction: column;
        }

        .fb-ind-btn-y,
        .fb-ind-btn-w {
            width: 100%;
            text-align: center;
        }

        .fb-ind-stats {
            flex-direction: column;
            width: 100%;
        }

        .fb-ind-stat-card {
            width: 100%;
            box-sizing: border-box;
        }
    }